footer {
  background: #020307;
  position: relative;
  padding: 50px 0;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ftLogo {
  display: flex;
  flex-direction: column;
}

.ftLogo>img {
  width: 206px;
}

.ftLogo .phone {
  background: #262626;
  padding: 0 15px;
  font-size: 30px;
  color: #fff;
  display: flex;
  align-items: center;
}

.ftLogo .phone img {
  margin-right: 15px;
}

.FtNav {
  width: calc(100% - 500px);
  display: flex;
  justify-content: space-between;
}

.FtNav_1 {
  display: flex;
  flex-direction: column;
}

.FtNav_1 h1 {
  font-size: 16px;
  color: var(--color);
  margin-bottom: 15px;
}

.FtNav_1 span {
  display: block;
  width: 20px;
  height: 2px;
  background: #343434;
}

.FtNav_1 a {
  margin-top: 15px;
  line-height: 1;
  color: #6e6e6e;
  font-size: 14px;
}

.FtText .wxBox {
  display: flex;
}

.FtText .FtNav_1 .img {
  margin-top: 15px;
  line-height: 2;
  color: #6e6e6e;
  font-size: 14px;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.FtText .FtNav_1 .img img {
  width: 112px;
}

/* 备案 */
.footer {
  border-top: #1a1b1f 1px solid;
  background: #020307;
  padding: 20px 0;
  width: 100%;
  color: #535353;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}

.footer a {
  color: #535353;
  font-size: 14px;
  line-height: 2;
}

@media (max-width: 1440px) {
  .FtNav {
    width: 600px;
  }
}

@media (max-width: 1200px) {
  .FtNav_1 h1 {
    width: 130px;
  }

  .FtText .FtNav_1 .img img {
    width: 90px;
  }

  .ftLogo .phone {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  footer {
    display: none;
  }
}




/* 手机导航 */
.phone_footer {
  display: none;
}

@media (max-width: 992px) {
  .footer {
    margin-bottom: 50px;
  }

  .phone_footer {
    background: #000;
    position: fixed;
    z-index: 999;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    display: flex;
  }

  .phone_footer a {
    line-height: 2;
    font-size: 12px;
    width: 25%;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .phone_footer a img {
    width: 25px;
  }
}


/* 图标 */

.FtIcon {
  width: 100%;
  margin-top: 45px;
  display: flex;
  justify-content: flex-end;
}

.FtIcon .item {
  position: relative;
  margin: 0 15px;
}

.FtIcon .item .icon {
  position: relative;
  width: 30px;
}

.FtIcon .item .icon img {
  width: 100%;
}

.FtIcon .item .text {
  position: absolute;
  left: calc(50% - 65px);
  bottom: 30px;
  z-index: -1;
  opacity: 0;
  width: 130px;
  padding-bottom: 15px;
  transition: 0.5s;
}

.FtIcon .item:hover .text {
  z-index: 1;
  opacity: 1;
}

.FtIcon .item .text img {
  width: 100%;
  padding: 15px;
  background: #fff;
}

.FtIcon .item .text p {
  line-height: 1;
  padding-bottom: 15px;
  margin: 0;
  font-size: 14px;
  text-align: center;
  color: #000;
  background: #fff;
}